home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
398
/
398.xpi
/
chrome
/
forecastfox.jar
/
content
/
parser
/
parser-item.js
< prev
next >
Wrap
Text File
|
2010-02-04
|
1KB
|
37 lines
/*------------------------------------------------------------------------------
Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
----------------------------------------------------------------------------*/
/******************************************************************************
* Interface for describing a parser item. The component that
* implements this interface should not be called directly, but instead
* gotten from the parser service interface.
*
* @status FROZEN
* @version 1.0
******************************************************************************/
function ParserItem()
{
this._properties = {};
}
ParserItem.prototype = {
__proto__: new ItemBase("ParserItem"),
////////////////////////////////
// ffIParserItem
/**
* Target the item applies to.
*/
get target() { return this.getProperty("target"); },
/**
* Index of the item.
*/
get index() { return this.getProperty("index"); },
/**
* Name of the parser item.
*/
get name() { return this.getProperty("name"); }
};